home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / mnemosyn / StubsHack / Sources / Makefile
Makefile  |  1994-09-02  |  578b  |  33 lines

  1. #    Library-making makefile
  2.  
  3. CCFlags        =    -c -fahi -depend !Depend -throwback -I,C:
  4. LibFileFlags    =    -c -o
  5.  
  6. Target        =    ^.o.SHLib
  7.  
  8. ObjectFiles    =    o.StubsHack    \
  9.  
  10.  
  11. # path(s) to source files:
  12. VPATH = @ @.^
  13.  
  14. # Don't change the following
  15.  
  16. .SUFFIXES:    .o .c
  17.  
  18. $(Target):    $(ObjectFiles)
  19.     LibFile $(LibFileFlags) $@ $(ObjectFiles)
  20.  
  21. .c.o:
  22.     cc $(ccFlags) -o $@ $<
  23.  
  24.  
  25. # Dynamic dependencies:
  26. o.HeapGraph:    c.HeapGraph
  27. o.HeapGraph:    C:h.kernel
  28. o.HeapGraph:    C:StubsHack.h.StubsHack
  29. o.HeapGraph:    C:StubsHack.h.HeapGraph
  30. o.StubsHack:    c.StubsHack
  31. o.StubsHack:    C:h.kernel
  32. o.StubsHack:    C:StubsHack.h.StubsHack
  33.